home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / T U R B O Language / Turbo C v3.0 / TC3SETUP.EXE / INCLUDE / SHARE.H < prev    next >
C/C++ Source or Header  |  1992-02-18  |  530b  |  27 lines

  1. /*  share.h
  2.  
  3.     File sharing mode for use with sopen.
  4.     See DOS function 3Dh for definition.
  5.  
  6.     Copyright (c) 1987, 1991 by Borland International
  7.     All Rights Reserved.
  8. */
  9.  
  10. #if !defined( __SHARE_H )
  11. #define __SHARE_H
  12.  
  13. #if !defined( __DEFS_H )
  14. #include <_defs.h>
  15. #endif
  16.  
  17. #define SH_COMPAT   0x0000
  18. #define SH_DENYRW   0x0010
  19. #define SH_DENYWR   0x0020
  20. #define SH_DENYRD   0x0030
  21. #define SH_DENYNONE 0x0040
  22.  
  23. #define SH_DENYNO   SH_DENYNONE /* MS documentation uses both */
  24.  
  25. #endif  /* __SHARE_H */
  26.  
  27.